home *** CD-ROM | disk | FTP | other *** search
- class com.ndimedia.display.Sprite
- {
- var m_graphics;
- function Sprite(scope, d)
- {
- if(!d)
- {
- d = scope.getNextHighestDepth();
- }
- this.m_graphics = scope.createEmptyMovieClip("s_" + d,d);
- }
- function get graphics()
- {
- return this.m_graphics;
- }
- function move(x, y)
- {
- this.graphics._x = x;
- this.graphics._y = y;
- }
- }
-